ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ListBox<T> Class / CheckedIndexes Property






In This Topic
    CheckedIndexes Property (ListBox<T>)
    In This Topic
    Gets or sets a list containing the indexes of checked items.
    Syntax
    'Declaration
     
    
    Public Property CheckedIndexes As System.Collections.Generic.IList(Of Integer)
    'Usage
     
    
    Dim instance As ListBox(Of T)
    Dim value As System.Collections.Generic.IList(Of Integer)
     
    instance.CheckedIndexes = value
     
    value = instance.CheckedIndexes
    public System.Collections.Generic.IList<int> CheckedIndexes {get; set;}
    public read-write property CheckedIndexes: System.Collections.Generic.IList; 
    public function get,set CheckedIndexes : System.Collections.Generic.IList
    public: __property System.Collections.Generic.IList<int>* get_CheckedIndexes();
    public: __property void set_CheckedIndexes( 
       System.Collections.Generic.IList<int>* value
    );
    public:
    property System.Collections.Generic.IList<int>^ CheckedIndexes {
       System.Collections.Generic.IList<int>^ get();
       void set (    System.Collections.Generic.IList<int>^ value);
    }
    See Also